home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / mod-1.dxr / 00028.ls < prev    next >
Encoding:
Text File  |  1997-04-01  |  3.8 KB  |  131 lines

  1. on mouseUp
  2.   global nIdioma, nIniVideo, nFinVideo, nStrip, bVideoNormal
  3.   case nIdioma of
  4.     1:
  5.       if the movieTime of sprite 2 < 950 then
  6.         set nStrip to 1
  7.         set nIniVideo to 6065
  8.         set nFinVideo to 6965
  9.       else
  10.         if the movieTime of sprite 2 < 1655 then
  11.           set nStrip to 2
  12.           set nIniVideo to 7315
  13.           set nFinVideo to 7840
  14.         else
  15.           if the movieTime of sprite 2 < 2430 then
  16.             set nStrip to 3
  17.             set nIniVideo to 8190
  18.             set nFinVideo to 8925
  19.           else
  20.             if the movieTime of sprite 2 < 3185 then
  21.               set nStrip to 4
  22.               set nIniVideo to 9275
  23.               set nFinVideo to 9900
  24.             else
  25.               if the movieTime of sprite 2 < 3880 then
  26.                 set nStrip to 5
  27.                 set nIniVideo to 10250
  28.                 set nFinVideo to 10980
  29.               else
  30.                 if the movieTime of sprite 2 < 4710 then
  31.                   set nStrip to 6
  32.                   set nIniVideo to 11330
  33.                   set nFinVideo to 11935
  34.                 else
  35.                   set nStrip to 7
  36.                   set nIniVideo to 12285
  37.                   set nFinVideo to 12925
  38.                 end if
  39.               end if
  40.             end if
  41.           end if
  42.         end if
  43.       end if
  44.     2:
  45.       if the movieTime of sprite 2 < 13925 then
  46.         set nStrip to 1
  47.         set nIniVideo to 19040
  48.         set nFinVideo to 19940
  49.       else
  50.         if the movieTime of sprite 2 < 14630 then
  51.           set nStrip to 2
  52.           set nIniVideo to 20290
  53.           set nFinVideo to 20815
  54.         else
  55.           if the movieTime of sprite 2 < 15405 then
  56.             set nStrip to 3
  57.             set nIniVideo to 21165
  58.             set nFinVideo to 21900
  59.           else
  60.             if the movieTime of sprite 2 < 16160 then
  61.               set nStrip to 4
  62.               set nIniVideo to 22250
  63.               set nFinVideo to 22875
  64.             else
  65.               if the movieTime of sprite 2 < 16855 then
  66.                 set nStrip to 5
  67.                 set nIniVideo to 23225
  68.                 set nFinVideo to 23955
  69.               else
  70.                 if the movieTime of sprite 2 < 17685 then
  71.                   set nStrip to 6
  72.                   set nIniVideo to 24305
  73.                   set nFinVideo to 24910
  74.                 else
  75.                   set nStrip to 7
  76.                   set nIniVideo to 25260
  77.                   set nFinVideo to 25900
  78.                 end if
  79.               end if
  80.             end if
  81.           end if
  82.         end if
  83.       end if
  84.     3:
  85.       if the movieTime of sprite 2 < 26915 then
  86.         set nStrip to 1
  87.         set nIniVideo to 32060
  88.         set nFinVideo to 32960
  89.       else
  90.         if the movieTime of sprite 2 < 27620 then
  91.           set nStrip to 2
  92.           set nIniVideo to 33310
  93.           set nFinVideo to 33835
  94.         else
  95.           if the movieTime of sprite 2 < 28395 then
  96.             set nStrip to 3
  97.             set nIniVideo to 34185
  98.             set nFinVideo to 34920
  99.           else
  100.             if the movieTime of sprite 2 < 29150 then
  101.               set nStrip to 4
  102.               set nIniVideo to 35270
  103.               set nFinVideo to 35890
  104.             else
  105.               if the movieTime of sprite 2 < 29845 then
  106.                 set nStrip to 5
  107.                 set nIniVideo to 36245
  108.                 set nFinVideo to 36975
  109.               else
  110.                 if the movieTime of sprite 2 < 30675 then
  111.                   set nStrip to 6
  112.                   set nIniVideo to 37325
  113.                   set nFinVideo to 37930
  114.                 else
  115.                   set nStrip to 7
  116.                   set nIniVideo to 38280
  117.                   set nFinVideo to 38920
  118.                 end if
  119.               end if
  120.             end if
  121.           end if
  122.         end if
  123.       end if
  124.   end case
  125.   if bVideoNormal then
  126.     go("pregunta")
  127.   else
  128.     go("preguntaP")
  129.   end if
  130. end
  131.